home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / The World of Computer Software.iso / chkfls12.zip / MAKEFILE < prev    next >
Text File  |  1992-08-14  |  591b  |  27 lines

  1. #
  2. # MicroS*t C 7.00 nmake-file for chkfiles -- Waffle 1.65 files checker
  3. # by Otto J. Makela (BBS V.32bis/HST +358 41 211 562)
  4. #
  5. # Distributed under the GNU General Public Licence:
  6. # see file COPYING for details
  7. #
  8.  
  9. CFLAGS    =    /Oxaz /Grs
  10.  
  11. chkfiles.exe:    chkfiles.obj formatch.obj dirs.obj
  12.     cl -F 3000 chkfiles.obj formatch.obj dirs.obj
  13.     pklite chkfiles
  14.  
  15. formatch.exe:    formatch.c
  16.     cl -DMAIN formatch.c
  17.     pklite formatch
  18.     del formatch.obj
  19.  
  20. dirs.exe:    dirs.c
  21.     cl -DMAIN dirs.c
  22.     pklite dirs
  23.     del dirs.obj
  24.  
  25. chkfiles.obj formatch.obj:    formatch.h
  26. chkfiles.obj dirs.obj:        dirs.h
  27.